home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / prog / lvswin.zip / WINCALC.HPP < prev    next >
C/C++ Source or Header  |  1991-10-17  |  665b  |  36 lines

  1. /*
  2.  *            LVS Windows
  3.  *      The Window Class System
  4.  *
  5.  *        Copyright 1991 (c), Lake View Software
  6.  *                            4321 Harborough Rd.
  7.  *                            Columbus, OH 43220
  8.  *        All rights reserved.
  9.  */
  10. // WinCalc.hpp
  11.  
  12. #ifndef WINCALC_HPP
  13. #define WINCALC_HPP
  14.  
  15. #include "WinObj.hpp"
  16.  
  17. class WinCalc {
  18.     private:
  19.     int hot_key;
  20.     int win_attr;
  21.     int bor_attr;
  22.     int bor_type;
  23.     char *title;
  24.     void pop_up ();
  25.     public:
  26.         WinCalc (int Hot_Key = ALT_F10);
  27.     ~WinCalc ();
  28.     int set_attr ();
  29.     title (char *t);
  30.     void change_border (int type, int attr);
  31. };
  32.  
  33.  
  34.  
  35. #endif   // not defined WINCALC_HPP
  36.